home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / GETCHAR.C < prev    next >
Text File  |  1988-02-01  |  256b  |  9 lines

  1. /*
  2. ** get a character from "stdin"
  3. */
  4. extern int *stdin, fgetc();
  5.  
  6. getchar() {
  7.   return fgetc(stdin);
  8.   }
  9.